home *** CD-ROM | disk | FTP | other *** search
- ' this file gathers a few code samples that require Option Strict Off
- Option Strict Off
-
- Module OptionStrictOff
-
- Sub TestArrayLateBinding()
- Dim arr3(,) As Integer = {{0, 1, 2, 3}, {0, 10, 20, 30}}
-
- ' (This code assumes that Option Strict is Off.)
- Dim o As Object = arr3
- Console.WriteLine(o(1, 1)) ' => 10
-
- End Sub
-
- End Module
-